1 package uba.db.table;
2
3 public class InvalidPrimaryKeyColumnsException extends RuntimeException {
4
5 public InvalidPrimaryKeyColumnsException() {
6 super();
7 // TODO Auto-generated constructor stub
8 }
9
10 public InvalidPrimaryKeyColumnsException(String message) {
11 super(message);
12 // TODO Auto-generated constructor stub
13 }
14
15 public InvalidPrimaryKeyColumnsException(String message, Throwable cause) {
16 super(message, cause);
17 // TODO Auto-generated constructor stub
18 }
19
20 public InvalidPrimaryKeyColumnsException(Throwable cause) {
21 super(cause);
22 // TODO Auto-generated constructor stub
23 }
24
25 }